projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8463d0e
)
Trivial formatting fix
author
Matthias Clasen
<mclasen@redhat.com>
Wed, 10 Dec 2014 04:41:28 +0000
(23:41 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 10 Dec 2014 04:41:28 +0000
(23:41 -0500)
&& goes at the end of the line in GTK+ coding style.
gtk/gtkbox.c
patch
|
blob
|
history
diff --git
a/gtk/gtkbox.c
b/gtk/gtkbox.c
index 2fb1c0d0c7386b46c3dba789835ecebdef6939f8..818e4d1a97f4859bf9b58c4b7e032e75f5be30cc 100644
(file)
--- a/
gtk/gtkbox.c
+++ b/
gtk/gtkbox.c
@@
-2324,8
+2324,8
@@
gtk_box_reorder_child (GtkBox *box,
priv->children = g_list_insert_before (priv->children, new_link, child_info);
gtk_widget_child_notify (child, "position");
- if (gtk_widget_get_visible (child)
-
&&
gtk_widget_get_visible (GTK_WIDGET (box)))
+ if (gtk_widget_get_visible (child)
&&
+ gtk_widget_get_visible (GTK_WIDGET (box)))
{
gtk_box_invalidate_order (box);
gtk_widget_queue_resize (child);